home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Modules / protos / pcremodule.h < prev    next >
Text File  |  1999-04-25  |  549b  |  9 lines

  1. static PcreObject *newPcreObject ( PyObject *arg );
  2. static void PyPcre_dealloc ( PcreObject *self );
  3. static PyObject *PyPcre_exec ( PcreObject *self , PyObject *args );
  4. static PyObject *PyPcre_getattr ( PcreObject *self , char *name );
  5. static PyObject *PyPcre_compile ( PyObject *self , PyObject *args );
  6. static PyObject *PyPcre_expand_escape ( unsigned char *pattern , int pattern_len , int *indexptr , int *typeptr );
  7. static PyObject *PyPcre_expand ( PyObject *self , PyObject *args );
  8. static void insint ( PyObject *d , char *name , int value );
  9.